home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / CD32 / CD32-Tools / simcd32-401 / Devs / SimCD32_Mountlist < prev   
Encoding:
Text File  |  1993-12-22  |  1.1 KB  |  38 lines

  1. /*
  2.  * CD-ROM file system entry
  3.  *
  4.  * This file enables the CD-ROM file system which allows you to read standard
  5.  * ISO-9660 images off of a hard drive using the SimCD32 developer tool.
  6.  * Use this mount list if you are using the FROM keyword:
  7.  *
  8.  * > mount cd0: FROM devs:CD0_Mount.
  9.  *
  10.  * Note that this uses CDFileSystem_40.8. Which is a version of CDFileSystem
  11.  * which does NOT use any 2.0 packets. This is better for emulation as the
  12.  * ROM CD32 CDFileSystem does NOT use any 2.0 packets.
  13.  */
  14.  
  15. CD0:
  16.         Device          = cd.device
  17.         Unit            = 0
  18.         Activate        = 1
  19.         FileSystem      = L:CDFileSystem_40.8
  20.         Flags           = 0
  21.         Surfaces        = 1
  22.         SectorsPerTrack = 1
  23.         SectorSize      = 2048
  24.         Mask            = 0x7ffffffe
  25.         MaxTransfer     = 0x100000
  26.         Reserved        = 0
  27.         Interleave      = 0
  28.         LowCyl          = 0
  29.         HighCyl         = 0
  30.         Buffers         = 5
  31.         BufMemType      = 0
  32.         StackSize       = 1000
  33.         Priority        = 10
  34.         GlobVec         = -1
  35.         DosType         = 0x43443031
  36. #
  37.  
  38.